Welcome![Sign In][Sign Up]
Location:
Search - Android button

Search list

[androidtakepicture

Description: 此代码实现android的拍照。通过触摸屏幕,显示聚焦和拍照按钮,然后根据所按下的按钮分别进行聚焦和拍照操作。-This code implements the android camera. By touching the screen, showing the focus and the camera button, then press the button, the focus and camera operation.
Platform: | Size: 669696 | Author: ll | Hits:

[androidtestDraft

Description: 一个Android拖动小控件的demo,有一个按钮可以在屏幕上随意拖动-There is a button on the screen easily drag an Android demo, drag the small control
Platform: | Size: 94208 | Author: | Hits:

[Other Riddle gamesShudu

Description: 这是我自己写的Android程序--数独游戏,个人认为这两点在于,我之用了TextView和Button然后游戏结束又惊喜,有女朋友照片-This is the Android application I wrote it myself- Sudoku personally think these two points that I purposes TextView and Button then the game is over and surprise, girlfriend photo
Platform: | Size: 40300544 | Author: Amos | Hits:

[androidKeyEventListener

Description: 鼠标按键事件响应,稍微复杂一点,模拟器上可以运行。android 2.2平台-In response to a mouse button event, a little more complicated, and can run on the simulator. android 2.2 platform
Platform: | Size: 43008 | Author: anne | Hits:

[OtherSlipButton

Description: android自定义按钮 可以拖动 仿照windosphone按钮-android can drag the custom button modeled on the windosphone button
Platform: | Size: 114688 | Author: 山学艺 | Hits:

[androidSlipSwitchButton

Description: android自定义的开关按钮,背景和按钮都是根据canvas绘制的,并且具有3d效果。-android custom switch button, background and buttons are in accordance with the canvas to, and having a 3d effect.
Platform: | Size: 2048 | Author: 吴健兴 | Hits:

[JSP/JavaTestUI

Description: android开发中常见的控件示例,包括button、TextView、EditText RadioGroup、RadioButton、CheckBox、 Spinner等 -android development example of common controls, including the button, the TextView the EditText RadioGroup, a RadioButton the CheckBox, Spinner, etc.
Platform: | Size: 62464 | Author: jianhaoran | Hits:

[androidSlipButton

Description: 做项目时,用到了Android 仿 iPhone 自定义滑动按钮(SlipButton),挺好用,转载了-To do the project, use the Android imitation iPhone the custom sliding button (SlipButton), and very easy to use, reproduced
Platform: | Size: 111616 | Author: guo | Hits:

[androidTextViewTest.rar

Description: package org.crazyit.textview import android.app.Activity import android.graphics.drawable.Drawable import android.graphics.drawable.ShapeDrawable import android.graphics.drawable.shapes.RectShape import android.os.Bundle import android.view.View import android.view.View.OnClickListener import android.widget.Button import android.widget.TextView /** * Description,package org.crazyit.textview import android.app.Activity import android.graphics.drawable.Drawable import android.graphics.drawable.ShapeDrawable import android.graphics.drawable.shapes.RectShape import android.os.Bundle import android.view.View import android.view.View.OnClickListener import android.widget.Button import android.widget.TextView /** * Description
Platform: | Size: 17408 | Author: ekey | Hits:

[androidDateDialog.rar

Description: package org.crazyit.dialog import java.util.Calendar import android.app.Activity import android.app.DatePickerDialog import android.app.TimePickerDialog import android.os.Bundle import android.view.View import android.view.View.OnClickListener import android.widget.Button import android.widget.DatePicker import android.widget.EditText import android.widget.TimePicker ,package org.crazyit.dialog import java.util.Calendar import android.app.Activity import android.app.DatePickerDialog import android.app.TimePickerDialog import android.os.Bundle import android.view.View import android.view.View.OnClickListener import android.widget.Button import android.widget.DatePicker import android.widget.EditText import android.widget.TimePicker
Platform: | Size: 17408 | Author: ekey | Hits:

[JSP/JavaToggleButton

Description: Android编程之ToggleButton实例源码下载,切换按钮,动态按钮Android源码实例,那些Android手机中的漂亮按钮就是这么做出来的,喜欢的就请下载源码参考学习吧。-ToggleButton example source code download Android programming, switch button, dynamic buttons Android source code examples, pretty Android phone button is to do so out of like to download the source code reference learn it.
Platform: | Size: 50176 | Author: 王航 | Hits:

[JSP/JavaRecordSound

Description: RecordSound源代码,Android录音实例,获取程序界面中的两个按钮,为两个按钮的单击事件绑定监听器,创建保存录音的音频文件,设置录音的声音来源,设置录制的声音的输出格式(必须在设置声音编码格式之前设置),设置声音编码的格式-RecordSound source code, Android recordings instance, get two buttons in the program interface binding for the two-button click event listener, create audio file of the saved recordings, set recording of the sound source, set the output format of the recorded sound (must be set prior to setting the audio encoding format), set the audio coding format ...
Platform: | Size: 90112 | Author: Leo | Hits:

[Video CaptureCameraTest

Description: android平台开发摄像机,进行摄像预览与图像拍摄。并设置了预览和拍照按钮。-the android platform developed camera, camera preview and image capture. And set the preview and the camera button.
Platform: | Size: 677888 | Author: 大超 | Hits:

[androidAndroid_SharedPreferences

Description: 实现了使用Android内部的SharedPreferences 保存读取数据;以及使用Android 内部Files 存储读取数据。 1. 实现本地简单保存读取文件功能。 文件名输入框有自动提示功能(也就是输入过程中能 够自动提示与我们输入内容相关的内容,以供选择),提示相关内容不能重复(最完美的情况是不出现相同文件名提示,遗憾的是此程序未能实现) 。此外,退出程序后重新进入程序,自动提示效果依然存在。(使用了AutoCompleteTextView 控件实现自动提示效果) 2.使用 SharedPreferences 记录输入过的信息。当然只有点击了保存文件按钮,文件名才会记录下来。) 点击保存文件按钮,可以用文件形式将文件内容保存到本地中,文件名为“输入文件名.txt”,文件名文本框和文件内容文本框清空。如果出现相同文件名,后者覆盖前者; 3.点击读取文件按钮,可以读取出输入文件名对应的文件内容并显示到文件内容文本框中。 -The Android internal SharedPreferences saved to read the data Android Internal Files stored read data.     1. Achieve local simple save to read the file.         File name input box automatically prompt function (that is, the input process can be automatically prompted to enter our contextual content to choose from), suggesting that relevant content can not be repeated (the most perfect situation is not the same file name prompt appears, unfortunately this program is not realized). In addition, exit the program to re-enter the program automatically prompts the effect still exists. (Using AutoCompleteTextView control automatically prompts effect)       2 to use SharedPreferences record input information. Of course, only click the Save File button, the file name will be recorded. )       Click the Save File button, you can document the contents of the file saved to a local file named "input file name. Txt" File Name text box and the co
Platform: | Size: 571392 | Author: 刘畅 | Hits:

[Windows DevelopRecord-Sound

Description: RecordSound源代码,Android录音实例,获取程序界面中的两个按钮,为两个按钮的单击事件绑定监听器,创建保存录音的音频文件,设置录音的声音来源,设置录制的声音的输出格式(必须在设置声音编码格式之前设置),设置声音编码的格式-RecordSound source code, Android recordings instance, get two buttons in the program interface binding for the two-button click event listener, create audio file of the saved recordings, set recording of the sound source, set the output format of the recorded sound(must be set prior to setting the audio encoding format), set the audio coding format ...
Platform: | Size: 90112 | Author: 苏小红 | Hits:

[androiddtmf-decoder

Description: 一个DTMF的解码源代码,可以直接运行在Android 1.6以上的版本上,如果需要测试效果需要利用两根带MIC的耳机线做成两端3.5MM音频口直连,发射端直接用手机拨号即可看到另一端能解出相应的按钮-A DTMF decoder source code, can be directly run on Android 1.6 or later on, if the need to test the effect of two with MIC headphone cable made both ends 3.5MM audio port directly connected, the transmitter directly using a mobile phone to dial see the other end of the solution corresponding button
Platform: | Size: 684032 | Author: wuzuokun | Hits:

[androidMySlipSwitch-0.2

Description: android滑动左右滑动按钮,按钮风格漂亮大方。背景可以换成自己喜欢的,与iphone效果相近-About android sliding sliding button, the button style is beautiful and easy. Background can be replaced with oneself to like, similar to the iphone effect
Platform: | Size: 162816 | Author: 小毅 | Hits:

[androidTestPath

Description: android 仿path中多个按钮弹出效果实现-android imitation path button pop-up effect implementation
Platform: | Size: 119808 | Author: hqdoremi | Hits:

[OtherTEAMTICTACTOE

Description: This an android application Eclipse, that deals with a Tic-Tac-Toe game that you play the user from a random algorithm. A TextView shows up what the result of the outcome is. There is a button to start a new game.-This is an android application on Eclipse, that deals with a Tic-Tac-Toe game that you play the user from a random algorithm. A TextView shows up what the result of the outcome is. There is a button to start a new game.
Platform: | Size: 1169408 | Author: Sirhc | Hits:

[JSP/JavaSpeech

Description: 个人写了一个文件里的文字转换成语音的Android小程序,在别人的TTS里,只能手写然后才读出来。我的程序只要在文本框里输入一个mnt/sdcard/*.txt,点击读文本按钮即可。-The personal write the text into a file voice applet Android, in others the TTS only handwritten and then read out. My program as long as the text box to enter a mnt/sdcard /*. Txt Click to read the text button.
Platform: | Size: 962560 | Author: 汪紫雨 | Hits:
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 16 »

CodeBus www.codebus.net